home *** CD-ROM | disk | FTP | other *** search
/ 360 Degrees of: Yellowstone National Park / 360 Degrees of: Yellowstone National Park.iso / pc / data / exhibit.cst / 00065_go to coords.ls < prev    next >
Encoding:
Text File  |  2008-04-21  |  327 b   |  21 lines

  1. property spriteNum
  2.  
  3. on mouseDown
  4.   --Set a variable that is used to check what item the user clicked
  5.   global mouseclickedon
  6.   mouseclickedon = spriteNum
  7. end 
  8.  
  9. on mouseUp
  10.   global mouseclickedon
  11.   if mouseclickedon = spriteNum then
  12.     
  13.     global showpanos
  14.     showpanos = 0
  15.     showhide
  16.     go to "coords"
  17.   end if
  18.   
  19.   
  20. end
  21.